home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / DiskFileOutput.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  1.1 KB  |  43 lines  |  [TEXT/KAHL]

  1. /* DiskFileOutput.h */
  2.  
  3. #ifndef Included_DiskFileOutput_h
  4. #define Included_DiskFileOutput_h
  5.  
  6. /* DiskFileOutput module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* MainWindowStuff */
  12. /* FixedPoint */
  13. /* BinaryCodedDecimal */
  14. /* Files */
  15. /* Memory */
  16. /* Alert */
  17. /* ExecuteSynthesis */
  18. /* ClipWarnDialog */
  19. /* SynthProgressWindow */
  20. /* BufferedFileOutput */
  21. /* ErrorDaemon */
  22.  
  23. #include "MainWindowStuff.h"
  24. #include "FixedPoint.h"
  25. #include "BinaryCodedDecimal.h"
  26.  
  27. /* forwards */
  28. struct MainWindowRec;
  29. struct ArrayRec;
  30. struct TrackObjectRec;
  31.  
  32. /* this routine opens a file and dumps the data to it. */
  33. void                                    SynthToAIFFFile(struct MainWindowRec* MainWindow,
  34.                                                 struct ArrayRec* ListOfTracks, struct TrackObjectRec* KeyTrack,
  35.                                                 long FrameToStartAt, long SamplingRate, long EnvelopeRate,
  36.                                                 MyBoolean UseStereo, LargeBCDType DefaultBeatsPerMinute,
  37.                                                 LargeBCDType OverallVolumeScalingReciprocal,
  38.                                                 MyBoolean InterpOverTime, MyBoolean InterpAcrossWaves,
  39.                                                 LargeBCDType ScanningGap, OutputNumBitsType NumBitsOut,
  40.                                                 MyBoolean ClipWarn);
  41.  
  42. #endif
  43.